if (name != NULL)
{
/* Translators: %s is a filename */
- label = g_strdup_printf (_("Select an application to open \"%s\""), name);
- string = g_strdup_printf (_("No applications available to open \"%s\""),
+ label = g_strdup_printf (_("Select an application to open “%s”"), name);
+ string = g_strdup_printf (_("No applications available to open “%s”"),
name);
}
else
{
/* Translators: %s is a file type description */
- label = g_strdup_printf (_("Select an application for \"%s\" files"),
+ label = g_strdup_printf (_("Select an application for “%s” files"),
unknown ? self->priv->content_type : description);
- string = g_strdup_printf (_("No applications available to open \"%s\" files"),
+ string = g_strdup_printf (_("No applications available to open “%s” files"),
unknown ? self->priv->content_type : description);
}
if (self->priv->content_type)
desc = g_content_type_get_description (self->priv->content_type);
- string = text = g_strdup_printf (_("No applications available to open \"%s\""),
+ string = text = g_strdup_printf (_("No applications available to open “%s”"),
desc);
g_free (desc);
}
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
- _("A file named \"%s\" already exists. Do you want to replace it?"),
+ _("A file named “%s” already exists. Do you want to replace it?"),
file_part);
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
- _("The file already exists in \"%s\". Replacing it will "
+ _("The file already exists in “%s”. Replacing it will "
"overwrite its contents."),
folder_display_name);
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
- _("A file named \"%s\" already exists. Do you want to replace it?"),
+ _("A file named “%s” already exists. Do you want to replace it?"),
basename);
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
- _("The file already exists in \"%s\". Replacing it will "
+ _("The file already exists in “%s”. Replacing it will "
"overwrite its contents."),
dirname);